4e9b3a55f781cde7760c71842b2884a6eaf75819,src/org/jgroups/protocols/UNICAST3.java,UNICAST3,handleBatchFromSelf,#MessageBatch#Entry#,533

Before Change


                deliverBatch(oob_batch);
            }

            final AtomicBoolean processing=win.getProcessing();
            if(processing.compareAndSet(false, true))
                removeAndDeliver(processing, win, batch.sender());
        }

        if(!batch.isEmpty())

After Change


                }
                deliverBatch(oob_batch);
            }
            removeAndDeliver(win, batch.sender());
        }
        if(!batch.isEmpty())
            up_prot.up(batch);